@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://use.fontawesome.com/releases/v5.6.3/css/all.css');

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    user-select: none
}

:root {
    --background-color: rgba(21, 21, 21, 0.994);
}

#app { display:none }

.garage-bg {
    background: var(--background-color);
    width: 1200px;
    height: 850px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.garage-bg .garage-header {
    width: 100%;
    height: 80px;
    display: table;
    table-layout: fixed;
    background: #111111;
}

.garage-bg .garage-header .garage-title {
    color: #eee;
    font-size: 40px;
    padding: 15px 17px;
    display: table-cell;
}

.garage-bg .garage-container {
    width: 100%;
    height: 100%;

    display: flex;
}

.garage-bg .garage-container .garage-vehicles {
    width: 300px;
    max-height: 80%;
    margin: 50px 50px;
    overflow-y: scroll
}

.garage-bg .garage-container .garage-vehicles::-webkit-scrollbar { display: none }

.garage-bg .garage-container .garage-vehicles .vehicle {
    background: #101010;
    width: 100%;
    height: 70px;
    color: #eee;
    font-size: 26px;
    padding: 20px 18px;
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
    transition: 200ms;
    cursor: pointer;
}

.garage-bg .garage-container .garage-vehicles .vehicle:hover {
    background: #1c1c1c
}

.garage-bg .garage-container .garage-vehicles .vehicle:not(:first-child) {
    margin-top: 10px;
}

.garage-bg .garage-container .garage-actions {
    background: #212121;
    width: 650px;
    height: 33.5%;
    margin: 50px 50px;
    overflow: hidden;
    display: none;
}


.garage-bg .garage-container .garage-actions p[label] {
    font-size: 35px;
    color: #eee;
    position: relative;
    top: -23px;
    left: 20px;
}

.garage-bg .garage-container .garage-actions button[action="Spawn"] {
    box-shadow: none;
    float: right;
    position: relative;
    top: -102.5px;
    left: -20px;
}

.garage-bg .garage-container .garage-actions .info-bg {
    width: 100%;
    height: 100%;

    position: relative;
    top: -90px;

    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: start;
}

.garage-bg .garage-container .garage-actions .info-bg .info {
    background: #161616;
    width: 292px;
    height: 75px;
    margin: 10px 15px;
    transition: 200ms;
    color: rgb(226, 226, 226);
    font-size: 25px;
    padding: 18px 15px;
}

.garage-bg .garage-container .garage-actions .info-bg .info:hover {
    background: #1c1c1c
}

.garage-bg .close {
    position: absolute;
    top: 94%;
    left: 1%;
} 
